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.
25 lines
458 B
25 lines
458 B
version: '3.7'
|
|
|
|
services:
|
|
db:
|
|
container_name: captain_db
|
|
image: mariadb
|
|
restart: always
|
|
env_file: .env
|
|
ports:
|
|
- "3306:3306"
|
|
|
|
captain:
|
|
container_name: captain_hook
|
|
build: .
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "3000:3000"
|
|
depends_on:
|
|
- "db"
|
|
volumes:
|
|
- ./html:/srv/website/html
|
|
- ./src:/srv/website/src
|
|
- ./sql:/srv/website/sql
|
|
- ./.env:/srv/website/.env
|