diff options
Diffstat (limited to 'scribe/docker-compose.yaml')
-rw-r--r-- | scribe/docker-compose.yaml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scribe/docker-compose.yaml b/scribe/docker-compose.yaml new file mode 100644 index 0000000..2a225da --- /dev/null +++ b/scribe/docker-compose.yaml @@ -0,0 +1,25 @@ +version: "3" +services: + app: + container_name: scribe + image: miklobit/scribe:latest + restart: unless-stopped + #ports: + # - 8080:8080 + environment: + - SCRIBE_PORT=8080 + - SCRIBE_HOST=0.0.0.0 + #- SCRIBE_DB=postgres://does@not/matter + - APP_DOMAIN=https://m.birabittoh.duckdns.org + #- LUCKY_ENV=production + #- SECRET_KEY_BASE=e6ab1cf6557cc1b20c0a082f05001c842db5bbd6 + #- PORT=8080 + #- DATABASE_URL=postgres://does@not/matter + networks: + - default + - swag_default + +networks: + default: + swag_default: + external: true |