--- version: "3.4" services: app: image: gitlab-registry.fedy95.com:5002/dev/notification-provider:latest restart: always volumes: - ./env/app/app.env:/var/www/localhost/.env expose: - "9000" nginx: image: nginx:1.21-alpine restart: always depends_on: - app volumes: - ./app:/var/www/localhost - ./devops/docker/nginx/etc/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf ports: - "8054:80" ...