File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " nixopus"
3- version = " 0.1.16 "
3+ version = " 0.1.17 "
44description = " A CLI for Nixopus"
55authors = [
" Nixopus <[email protected] >" ]
66readme = " README.md"
Original file line number Diff line number Diff line change @@ -57,6 +57,30 @@ services:
5757 POSTGRES_DB : ${DB_NAME:-postgres}
5858 POSTGRES_HOST_AUTH_METHOD : trust
5959
60+ caddy :
61+ env :
62+ CADDY_IMAGE : ${CADDY_IMAGE:-caddy:latest}
63+ CADDY_CONTAINER_NAME : ${CADDY_CONTAINER_NAME:-nixopus-caddy}
64+ CADDY_DATA_VOLUME : ${CADDY_DATA_VOLUME:-./caddy/data}
65+ CADDY_CONFIG_VOLUME : ${CADDY_CONFIG_VOLUME:-./caddy/config}
66+ CADDY_PORTS : " 2019:2019,80:80,443:443"
67+ API_DOMAIN : ${API_DOMAIN:-api.localhost}
68+ VIEW_DOMAIN : ${VIEW_DOMAIN:-app.localhost}
69+ BASE_URL : ${BASE_URL:-http://localhost:2019}
70+ PROXY_PORT : ${PROXY_PORT:-2019}
71+ CONFIG_ENDPOINT : ${CONFIG_ENDPOINT:-/config}
72+ LOAD_ENDPOINT : ${LOAD_ENDPOINT:-/load}
73+ STOP_ENDPOINT : ${STOP_ENDPOINT:-/stop}
74+ CADDY_COMMAND :
75+ [
76+ " caddy" ,
77+ " run" ,
78+ " --config" ,
79+ " /etc/caddy/Caddyfile" ,
80+ " --adapter" ,
81+ " caddyfile" ,
82+ ]
83+
6084networks :
6185 default :
6286 name : nixopus-network
You can’t perform that action at this time.
0 commit comments