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.
50 lines
978 B
50 lines
978 B
version: '3'
|
|
|
|
services:
|
|
bs1in:
|
|
build:
|
|
context: ./app
|
|
dockerfile: Dockerfile
|
|
restart: 'no'
|
|
ports:
|
|
- 8099:6969
|
|
volumes:
|
|
- /srv/bs1in/configs:/go/src/g.phga.de/phga/bs1in/configs
|
|
- /srv/bs1in/web/data:/go/src/g.phga.de/phga/bs1in/web/data
|
|
- /srv/bs1in/web/static/fonts:/go/src/g.phga.de/phga/bs1in/web/static/fonts
|
|
|
|
mongo:
|
|
image: mongo
|
|
restart: 'no'
|
|
env_file:
|
|
- /srv/bs1in/.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
|
|
|
|
mariadb:
|
|
image: mariadb
|
|
container_name: mariadb
|
|
restart: 'no'
|
|
env_file:
|
|
- /srv/bs1in/.env
|
|
ports:
|
|
- '3306:3306'
|
|
volumes:
|
|
- /srv/mariadb/init:/docker-entrypoint-initdb.d
|
|
|
|
adminer:
|
|
image: adminer:4.8.0
|
|
container_name: adminer
|
|
restart: 'no'
|
|
ports:
|
|
- '8013:8080' |