mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02:00
* restructured Proxy, Deploy/CLI-install contents * removed caddy assets fron release * fixed changes in variables.env * fixed action * test build * testing release * finalize the caddy changes * renamed proxy-ee to proxy. * chore: changed docker compose file swarm compatible * fix: added port no in proxy configuration * added Replica Envs for services * compose file for coolify * updated docker-compose * fix changes * updated docker-compose.yml * updated monitor to handle COOLIFY * updated deploy_platform value * pulled latest preview * updated variables env * fix merge conflicts * fix changes * fix changes * chore: coolify compose file * chore: added github action to upload coolify compose file on s3 * fixed monitor build * testing release build * updated branch-build-ee --------- Co-authored-by: Manish Gupta <manish@plane.so> Co-authored-by: Manish Gupta <59428681+mguptahub@users.noreply.github.com>
14 lines
334 B
Docker
14 lines
334 B
Docker
FROM caddy:builder AS caddy-builder
|
|
|
|
RUN xcaddy build \
|
|
--with github.com/caddy-dns/cloudflare \
|
|
--with github.com/caddy-dns/digitalocean \
|
|
--with github.com/mholt/caddy-l4
|
|
|
|
FROM caddy:alpine
|
|
|
|
RUN apk add nss-tools bash curl
|
|
|
|
COPY --from=caddy-builder /usr/bin/caddy /usr/bin/caddy
|
|
|
|
COPY Caddyfile.ee /etc/caddy/Caddyfile |