You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
docker-static-websites/docker-compose.yml

19 lines
394 B

version: "3"
services:
static-websites:
build: .
container_name: ${NG_CONTAINER_NAME:-nginx-static-websites}
restart: ${NG_RESTART:-unless-stopped}
volumes:
- ${LOCAL_STACK_DIR}/data:/data:ro
- ${LOCAL_STACK_DIR}/config:/config
env_file:
- static-websites.env
environment:
- TZ=${TZ}
networks:
default:
external:
name: ${NETWORK}