mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 13:22:58 -05:00
18 lines
408 B
YAML
18 lines
408 B
YAML
version: "3.9"
|
|
services:
|
|
frontend:
|
|
image: codeberg.org/dragongoose/safetwitch
|
|
ports:
|
|
- "8080:80"
|
|
environment:
|
|
- VITE_BACKEND_DOMAIN=localhost:7000
|
|
- VITE_INSTANCE_DOMAIN=localhost:80
|
|
- VITE_HTTPS=false
|
|
backend:
|
|
image: codeberg.org/dragongoose/safetwitch-backend
|
|
ports:
|
|
- "7000:7000"
|
|
environment:
|
|
- PORT=7000
|
|
- URL=http://localhost:7000
|
|
|