mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-08 08:22:48 +00:00
23 lines
544 B
YAML
Executable File
23 lines
544 B
YAML
Executable File
version: '2'
|
|
|
|
services:
|
|
cwf:
|
|
image: mgerb/classic-wow-forums:latest
|
|
ports:
|
|
- 8080:80
|
|
environment:
|
|
- DB_HOST=
|
|
- DB_USER=
|
|
- DB_PASS=
|
|
- SECRET_KEY_BASE=
|
|
- GUARDIAN_SECRET=
|
|
- BNET_CLIENT_ID=
|
|
- BNET_CLIENT_SECRET=
|
|
- BNET_REDIRECT_URI=
|
|
- ADMIN_USERNAME=
|
|
- ADMIN_PASSWORD=
|
|
- ADMIN_CHAR_NAME=
|
|
- ADMIN_CHAR_AVATAR=
|
|
- ADMIN_PERMISSIONS=
|
|
command: sh -c "_build/prod/rel/myapp/bin/myapp migrate && _build/prod/rel/myapp/bin/myapp seed && _build/prod/rel/myapp/bin/myapp foreground"
|