You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
18 lines
386 B
3 years ago
|
# Use root/example as user/password credentials
|
||
|
version: '3.1'
|
||
|
services:
|
||
|
mongo:
|
||
|
image: mongo:4.4
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 27017:27017
|
||
|
volumes:
|
||
|
- ./data:/data/db
|
||
|
|
||
|
awesomescibo:
|
||
|
image: abheekd/awesomescibo:latest
|
||
|
restart: unless-stopped
|
||
|
environment:
|
||
|
MONGO_URI: "mongodb://mongo:27017/AWESOME?authSource=AWESOME&w=1"
|
||
|
TOKEN: "TOKEN"
|