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.
18 lines
301 B
18 lines
301 B
version: '3.7'
|
|
|
|
services:
|
|
apella-guide:
|
|
image: nginx
|
|
container_name: apella-guide
|
|
restart: always
|
|
env_file:
|
|
- ./env/apella-guide.env
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./src/:/usr/share/nginx/html:ro
|
|
|
|
# Networks in use
|
|
networks:
|
|
apella-net:
|
|
driver: bridge
|
|
|