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.
23 lines
411 B
23 lines
411 B
# Use root/example as user/password credentials
|
|
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:
|
|
- "5000:5000"
|
|
depends_on:
|
|
- "db"
|
|
volumes:
|
|
- ./html:/srv/website/html
|