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.
32 lines
565 B
32 lines
565 B
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 |