init
This commit is contained in:
parent
0d3df6bb64
commit
dcf546fa9c
18 changed files with 3463 additions and 1 deletions
22
docker-compose.yml
Normal file
22
docker-compose.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
version: '3'
|
||||
services:
|
||||
# synthwave:
|
||||
# build: .
|
||||
# ports:
|
||||
# - "8080:8080"
|
||||
# depends_on:
|
||||
# - mongodb
|
||||
# environment:
|
||||
# - "DB_URI=mongodb://user:pass@mongodb:27017"
|
||||
# - "DB=synthwrld"
|
||||
|
||||
mongodb:
|
||||
image: mongo:latest
|
||||
ports:
|
||||
- "27017:27017"
|
||||
environment:
|
||||
MONGO_INITDB_ROOT_USERNAME: user
|
||||
MONGO_INITDB_ROOT_PASSWORD: pass
|
||||
volumes:
|
||||
- ./db:/data/db
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue