2023-11-06 10:39:27 +08:00
|
|
|
# {{ ansible_managed }}
|
|
|
|
version: '3.7'
|
|
|
|
services:
|
|
|
|
scribe:
|
|
|
|
container_name: scribe
|
2023-11-22 08:37:19 +08:00
|
|
|
image: registry.gitlab.com/lomanic/scribe-binaries:latest
|
2023-11-06 10:39:27 +08:00
|
|
|
security_opt:
|
|
|
|
- no-new-privileges
|
|
|
|
environment:
|
|
|
|
- PUID=1000
|
|
|
|
- PGID=1000
|
|
|
|
- TZ=Asia/Singapore
|
|
|
|
- SCRIBE_PORT=8088
|
|
|
|
- PORT=8088
|
|
|
|
- SCRIBE_HOST=0.0.0.0
|
|
|
|
- SCRIBE_DB=postgres://does@not/matter
|
|
|
|
- LUCKY_ENV=production
|
|
|
|
- APP_DOMAIN=m.opnxng.com
|
|
|
|
- SECRET_KEY_BASE="{{ scribe_jwt_secret }}"
|
2023-11-22 08:37:19 +08:00
|
|
|
restart: unless-stopped
|
2023-11-06 10:39:27 +08:00
|
|
|
ports:
|
|
|
|
- 8890:8088
|
|
|
|
networks:
|
2023-11-10 05:28:42 +08:00
|
|
|
- scribe
|
|
|
|
|
2023-11-06 10:39:27 +08:00
|
|
|
networks:
|
2023-11-10 05:28:42 +08:00
|
|
|
scribe:
|
2023-11-22 08:37:19 +08:00
|
|
|
name: scribe
|