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.
 
 
 
 
 

30 lines
535 B

version: '3'
services:
server:
build:
dockerfile: Dockerfile_server
volumes:
- "/var/www/data"
ports:
- data-volume:"8000:8000"
privileged: true
ipc: host
deploy:
restart_policy:
condition: on-failure
analytics:
build:
dockerfile: Dockerfile_analytics
volumes:
- data-volume:"/var/www/data"
ports:
- "8002:8002"
privileged: true
ipc: host
deploy:
restart_policy:
condition: on-failure
volumes:
data-volume: