move Git repository kontor-docker to directory bottle-docker

This commit is contained in:
Thomas Peetz
2025-03-29 19:05:31 +01:00
parent 45971518ee
commit a5cdf8867a
29 changed files with 1681 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
services:
mongodb:
image: mongo
restart: always
volumes:
- db-data:/var/lib/mongo
networks:
- backend-network
app:
build: app
restart: always
ports:
- 9000:9000
networks:
- backend-network
- frontend-network
nginx:
image: nginx
restart: always
volumes:
- ./nginx:/etc/nginx/conf.d
- ./front-end:/var/www/front-end
ports:
- 8070:80
networks:
- frontend-network
volumes:
db-data:
networks:
backend-network:
frontend-network: