diff --git a/charon/compose.yml b/charon/compose.yml new file mode 100644 index 0000000..28c9113 --- /dev/null +++ b/charon/compose.yml @@ -0,0 +1,22 @@ +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