bs1in/build/docker-compose.yml
2021-10-13 11:06:56 +02:00

32 lines
565 B
YAML

version: '3'
services:
bs1in:
build:
context: ./app
dockerfile: Dockerfile
restart: 'no'
ports:
- 8099:6969
volumes:
- /srv/bs1in/configs:CONFIGFOLDER
- /srv/bs1in/web/data:DATAFOLDER
- /srv/bs1in/web/static/fonts:FONTSFOLDER
mongo:
image: mongo
restart: 'no'
env_file:
- /srv/gott/.env
ports:
- 27017:27017
volumes:
- /srv/bs1in/db:/data/db
mongo-express:
image: mongo-express
restart: 'no'
ports:
- 9099:8081
env_file:
- /srv/bs1in/.env