mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-22 15:55:09 +00:00
Fix for multiple simultaneous running stacks (#857)
* Add files via upload * Updated networks * Updated networks
This commit is contained in:
parent
6fa946a630
commit
67026915dd
1 changed files with 8 additions and 2 deletions
|
|
@ -2,7 +2,6 @@ services:
|
||||||
frontend:
|
frontend:
|
||||||
networks:
|
networks:
|
||||||
- traefik-public
|
- traefik-public
|
||||||
- mariadb-network
|
|
||||||
- bench-network
|
- bench-network
|
||||||
labels:
|
labels:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
|
|
@ -13,27 +12,34 @@ services:
|
||||||
- traefik.http.routers.${ROUTER}-http.rule=Host(${SITES?SITES not set})
|
- traefik.http.routers.${ROUTER}-http.rule=Host(${SITES?SITES not set})
|
||||||
configurator:
|
configurator:
|
||||||
networks:
|
networks:
|
||||||
|
- bench-network
|
||||||
- mariadb-network
|
- mariadb-network
|
||||||
backend:
|
backend:
|
||||||
networks:
|
networks:
|
||||||
- mariadb-network
|
- mariadb-network
|
||||||
|
- bench-network
|
||||||
websocket:
|
websocket:
|
||||||
networks:
|
networks:
|
||||||
|
- bench-network
|
||||||
- mariadb-network
|
- mariadb-network
|
||||||
scheduler:
|
scheduler:
|
||||||
networks:
|
networks:
|
||||||
|
- bench-network
|
||||||
- mariadb-network
|
- mariadb-network
|
||||||
queue-default:
|
queue-default:
|
||||||
networks:
|
networks:
|
||||||
|
- bench-network
|
||||||
- mariadb-network
|
- mariadb-network
|
||||||
queue-short:
|
queue-short:
|
||||||
networks:
|
networks:
|
||||||
- mariadb-network
|
- bench-network
|
||||||
queue-long:
|
queue-long:
|
||||||
networks:
|
networks:
|
||||||
|
- bench-network
|
||||||
- mariadb-network
|
- mariadb-network
|
||||||
redis:
|
redis:
|
||||||
networks:
|
networks:
|
||||||
|
- bench-network
|
||||||
- mariadb-network
|
- mariadb-network
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue