This commit is contained in:
bel
2021-09-14 06:20:35 -06:00
commit c1b827fba3
40 changed files with 1509 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
---
version: "3.2"
services:
app:
environment:
- ALLOWED_HOSTS='*'
- DATABASE_URL=postgres://silverstrike:secretpass@database/silverstrikedb
- SECRET_KEY=PLprXpLzxemgLD57GPQQ84SBZdLVKFYg
image: simhnna/silverstrike
links:
- database:database
ports:
- 8000:8000
database:
environment:
POSTGRES_DB: silverstrikedb
POSTGRES_USER: silverstrike
POSTGRES_PASSWORD: secretpass
image: postgres:10.3
volumes:
- ./silverstrikedb:/var/lib/postgresql/data