mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-21 14:51:51 +00:00
22 lines
328 B
YAML
22 lines
328 B
YAML
version: '3'
|
|
services:
|
|
troggle:
|
|
restart: always
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ../..:/expo
|
|
links:
|
|
- expo-mysql
|
|
expo-mysql:
|
|
restart: always
|
|
image: "mariadb"
|
|
env_file:
|
|
- compose/mysql.env
|
|
volumes:
|
|
- expo-mysqldb:/var/lib/mysql
|
|
|
|
volumes:
|
|
expo-mysqldb:
|