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.
20 lines
397 B
20 lines
397 B
4 years ago
|
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:ro
|
||
|
env_file:
|
||
|
- static-websites.env
|
||
|
environment:
|
||
|
- TZ=${TZ}
|
||
|
|
||
|
networks:
|
||
|
default:
|
||
|
external:
|
||
|
name: ${NETWORK}
|