mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
This now allows ANY Stikked configuration variable to be overridden by environment variables.
22 lines
298 B
YAML
22 lines
298 B
YAML
version: '2'
|
|
|
|
services:
|
|
db:
|
|
image: mysql:latest
|
|
volumes:
|
|
- db_data:/var/lib/mysql
|
|
env_file:
|
|
docker/stikked-envvars.txt
|
|
|
|
stikked:
|
|
depends_on:
|
|
- db
|
|
image: stikked
|
|
env_file:
|
|
docker/stikked-envvars.txt
|
|
ports:
|
|
- 8070:80
|
|
|
|
volumes:
|
|
db_data:
|