0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 13:22:58 -05:00

Archived arm64 docker images and add an nginx config for websockets

This commit is contained in:
shawerma 2023-09-16 14:37:54 +00:00
parent 34f9320889
commit ccfd797094

View file

@ -13,15 +13,18 @@ services:
- SETGID
- SETUID
restart: always
image: codeberg.org/dragongoose/safetwitch:latest
image: safetwitch:arm64
platform: "linux/arm64"
ports:
- "127.0.0.1:8280:80"
environment:
- SAFETWITCH_BACKEND_DOMAIN=changethis
- SAFETWITCH_INSTANCE_DOMAIN=changethis
- SAFETWITCH_BACKEND_DOMAIN=twitch-api.seitan-ayoub.lol
- SAFETWITCH_INSTANCE_DOMAIN=twitch.seitan-ayoub.lol
- SAFETWITCH_HTTPS=true
- SAFETWITCH_DEFAULT_LOCALE=en
- SAFETWITCH_FALLBACK_LOCALE=en
networks:
- nginx_network
safetwitch-backend:
container_name: safetwitch-backend
@ -33,9 +36,15 @@ services:
cap_drop:
- ALL
restart: always
image: codeberg.org/dragongoose/safetwitch-backend:latest
image: safetwitch-backend:arm64
platform: "linux/arm64"
networks:
- nginx_network
ports:
- "127.0.0.1:7100:7000"
environment:
- PORT=7000
- URL=https://changethis
- URL=https://twitch-api.seitan-ayoub.lol
networks:
nginx_network:
external: true