37 lines
855 B
YAML
37 lines
855 B
YAML
version: "3"
|
|
services:
|
|
web:
|
|
# build: . # Only if you want to Build the image on your own Server!
|
|
image: registry.ucode.space/phil/goshorly:latest
|
|
environment:
|
|
- HOST=example.org # Domain or IP-Adress
|
|
- HTTPS=true # If you want to use HTTPS
|
|
- PROXY=true # If you want to use a Reverse Proxy
|
|
- PORT=3000 # The Port you want to use
|
|
depends_on:
|
|
- redis
|
|
restart: always
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
command: redis-server --appendonly yes
|
|
volumes:
|
|
- db:/data
|
|
restart: always
|
|
|
|
caddy:
|
|
image: caddy:2
|
|
restart: always
|
|
command: caddy reverse-proxy --from https://example.org:443 --to http://web:3000
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- caddy:/data
|
|
depends_on:
|
|
- web
|
|
- redis
|
|
|
|
volumes:
|
|
caddy:
|
|
db:
|