# # simplified compose FOR LOCAL DEVELOPMENT. # version: '3' services: app: image: cthulhoo/the-epube-fpm-static:latest environment: SKIP_RSYNC_ON_STARTUP: true build: dockerfile: .docker/app/Dockerfile context: . restart: unless-stopped env_file: - .env volumes: - .:/var/www/html/books - ${BOOKS_DIR}:/books:ro web-nginx: image: cthulhoo/the-epube-web-nginx:latest build: dockerfile: .docker/web-nginx/Dockerfile context: . restart: unless-stopped env_file: - .env ports: - ${HTTP_PORT}:80 volumes: - .:/var/www/html/books:ro depends_on: - app