29. Juni 2024, 13:18

This commit is contained in:
2024-06-29 11:18:39 +00:00
parent 40bc7de1cc
commit 79ddafea9d
32 changed files with 21980 additions and 4 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
version: "3.3"
services:
test:
image : test_container
container_name: test_container
restart: unless-stopped
volumes:
- ./local:/usr/src/app/backend/dist/local
networks:
- Backend
labels:
- "traefik.enable=true"
- "traefik.http.routers.test.rule=Host(`test.csnetworkx.dev`)"
- "traefik.http.routers.test.entrypoints=websecure,publicwebsecure"
- "traefik.http.services.test.loadbalancer.server.port=80"
- "traefik.http.routers.test.service=test"
- "traefik.http.routers.test.tls.certresolver=myresolver"
networks:
Backend:
external: true