# Template: Replace {app_name}, {image}, and {port} with actual values services: {app_name}: image: {image} container_name: {app_name} restart: unless-stopped # Uncomment if building from Dockerfile: # build: . env_file: - .env networks: - proxy - default # Uncomment and set the internal port: # expose: # - "{port}" networks: proxy: name: proxy external: true