mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 21:33:41 -05:00
readd networks (again)
This commit is contained in:
parent
7727c6eeb2
commit
66e1354dd7
1 changed files with 7 additions and 0 deletions
|
@ -14,6 +14,8 @@ services:
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 3
|
retries: 3
|
||||||
image: mariadb
|
image: mariadb
|
||||||
|
networks:
|
||||||
|
- catask
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- ./schema.sql:/docker-entrypoint-initdb.d/1.sql
|
- ./schema.sql:/docker-entrypoint-initdb.d/1.sql
|
||||||
|
@ -25,11 +27,16 @@ services:
|
||||||
depends_on:
|
depends_on:
|
||||||
mariadb:
|
mariadb:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
networks:
|
||||||
|
- catask
|
||||||
ports:
|
ports:
|
||||||
- "8000:8000"
|
- "8000:8000"
|
||||||
volumes:
|
volumes:
|
||||||
- ./config.json:/catask/config.json
|
- ./config.json:/catask/config.json
|
||||||
- ./.env:/catask/.env
|
- ./.env:/catask/.env
|
||||||
|
|
||||||
|
networks:
|
||||||
|
catask:
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
db-data:
|
db-data:
|
Loading…
Add table
Reference in a new issue