version: '3' services: proxy: container_name: lv_proxy profiles: - app image: nginx restart: unless-stopped ports: - "${WEB_PORT:-8030}:80" volumes: - "./nginx.conf:/etc/nginx/conf.d/default.conf" - "./app:/app" - "./logs:/logs" php: container_name: lv_app profiles: - app build: . restart: unless-stopped volumes: - "./app:/app" - "./logs:/logs"