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.
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
bs1in:
|
|
|
|
build:
|
|
|
|
context: ..
|
|
|
|
dockerfile: build/Dockerfile
|
|
|
|
restart: 'no'
|
|
|
|
ports:
|
|
|
|
- 8099:6969
|
|
|
|
volumes:
|
|
|
|
- ../configs:/app/configs
|
|
|
|
- ../web:/app/web
|
|
|
|
- ../sql:/app/sql
|
|
|
|
depends_on:
|
|
|
|
- mongo
|
|
|
|
- mariadb
|
|
|
|
|
|
|
|
mongo:
|
|
|
|
image: mongo
|
|
|
|
container_name: bs1in_mongo
|
|
|
|
restart: 'no'
|
|
|
|
env_file:
|
|
|
|
- ./.env
|
|
|
|
volumes:
|
|
|
|
- /srv/bs1in/db:/data/db
|
|
|
|
|
|
|
|
mongo-express:
|
|
|
|
image: mongo-express
|
|
|
|
restart: 'no'
|
|
|
|
ports:
|
|
|
|
- 9099:8081
|
|
|
|
env_file:
|
|
|
|
- ./.env
|
|
|
|
|
|
|
|
mariadb:
|
|
|
|
image: mariadb
|
|
|
|
container_name: bs1in_mariadb
|
|
|
|
restart: 'no'
|
|
|
|
env_file:
|
|
|
|
- ./.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'
|