23 lines
556 B
YAML
23 lines
556 B
YAML
services:
|
|
charon:
|
|
container_name: charon
|
|
image: wikid82/charon:latest
|
|
environment:
|
|
- CHARON_ENV=production
|
|
- CHARON_JWT_SECRET=47c6898e65e9cee3822bb08f5972efdc2462e7a116300cf56a3f84811b761a2b
|
|
- CHARON_ENCRYPTION_KEY=wZ9R/Vt6TOCdIXTZaORF1htlHJ2kcejDm9YboXe8vZc=
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "8888:8080"
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./charon-data:/app/data
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
name: reverse-proxy
|
|
external: true
|