mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 02:10:18 +01:00
18 lines
289 B
YAML
18 lines
289 B
YAML
services:
|
|
front:
|
|
build: ./traque-front
|
|
restart: always
|
|
|
|
reverse_proxy:
|
|
build: ./proxy
|
|
ports:
|
|
- "3000:443"
|
|
volumes:
|
|
- ./proxy/ssl:/etc/nginx/ssl:ro
|
|
restart: always
|
|
|
|
back:
|
|
build: ./traque-back
|
|
ports:
|
|
- "3001:3001"
|
|
restart: always |