safetwitch/docker-compose.yml

32 lines
813 B
YAML
Raw Normal View History

version: "3.7"
2023-04-27 15:43:34 +00:00
services:
safetwitch-frontend:
container_name: safetwitch-frontend
hostname: safetwitch-frontend
restart: always
2023-11-30 01:28:12 +00:00
image: codeberg.org/safetwitch/safetwitch:latest
2023-04-27 15:43:34 +00:00
ports:
2023-12-13 23:16:56 +00:00
- "127.0.0.1:8280:8280"
environment:
- SAFETWITCH_BACKEND_DOMAIN=changeme
- SAFETWITCH_INSTANCE_DOMAIN=changeme
- SAFETWITCH_HTTPS=true
2023-06-13 16:08:43 +00:00
- SAFETWITCH_DEFAULT_LOCALE=en
- SAFETWITCH_FALLBACK_LOCALE=en
safetwitch-backend:
container_name: safetwitch-backend
hostname: safetwitch-backend
read_only: true
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
restart: always
2023-11-30 01:28:12 +00:00
image: codeberg.org/safetwitch/safetwitch-backend:latest
2023-04-27 15:43:34 +00:00
ports:
- "127.0.0.1:7100:7000"
2023-04-27 15:43:34 +00:00
environment:
- PORT=7000
2023-12-13 23:16:56 +00:00
- URL=changeme