version: '3.8' services: backend: build: context: ./backend dockerfile: Dockerfile container_name: drone-footage-backend volumes: - /home/uad/nextcloud/footages:/footages environment: - COMPRESSION_WATCHDOG_TIMEOUT=${COMPRESSION_WATCHDOG_TIMEOUT:-900} restart: unless-stopped networks: - drone-footage-network frontend: build: context: ./frontend dockerfile: Dockerfile container_name: drone-footage-frontend ports: - "33768:80" depends_on: - backend restart: unless-stopped networks: - drone-footage-network networks: drone-footage-network: driver: bridge