move Git repository kontor-docker to directory bottle-docker
This commit is contained in:
@@ -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:
|
||||
Reference in New Issue
Block a user