deployment, frontend updates
This commit is contained in:
32
docker-compose.yml
Normal file
32
docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
services:
|
||||
dmweb:
|
||||
build: .
|
||||
image: registry.mcrn.ar/dmweb:latest
|
||||
container_name: dmweb
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- mongo
|
||||
environment:
|
||||
- MONGODB_HOST=mongo
|
||||
networks:
|
||||
- gateway
|
||||
- internal
|
||||
|
||||
mongo:
|
||||
image: mongo:7
|
||||
container_name: dmweb-mongo
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- mongo-data:/data/db
|
||||
ports:
|
||||
- "27017:27017"
|
||||
networks:
|
||||
- internal
|
||||
|
||||
volumes:
|
||||
mongo-data:
|
||||
|
||||
networks:
|
||||
gateway:
|
||||
external: true
|
||||
internal:
|
||||
Reference in New Issue
Block a user