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.
17 lines
386 B
17 lines
386 B
# Use root/example as user/password credentials
|
|
version: '3.1'
|
|
services:
|
|
mongo:
|
|
image: mongo:4.4
|
|
restart: always
|
|
volumes:
|
|
- ./data:/data/db
|
|
|
|
awesomescibo:
|
|
image: docker.io/adawesomeguy/awesomescibo:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
MONGO_URI: "mongodb://mongo:27017/AWESOME"
|
|
TOKEN: ""
|
|
CLIENT_ID: ""
|
|
TESTING_GUIDE: ""
|
|
|