Ensemble des services de KAZ
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.
 
 
 
 
 
 

41 lines
768 B

version: "3.5"
services:
quotas:
# ports:
# - 8084:3000
image: quotaskaz
container_name: ${quotasServName}
# restart: ${restartPolicy}
depends_on:
- db
networks:
- quotasNet
links:
- db
env_file:
- ../../secret/env-${quotasDBName}
db:
image: mariadb:10.5
container_name: ${quotasDBName}
restart: ${restartPolicy}
networks:
- quotasNet
env_file:
- ../../secret/env-${quotasDBName}
volumes:
- ./initdb.d:/docker-entrypoint-initdb.d:ro
- quotasDB:/var/lib/mysql
- /home/sauve/:/svg/
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
volumes:
quotasDB:
networks:
quotasNet:
external: true
name: quotasNet