CFTunnels/docker-compose.yaml
hitanshu310 fb4ff60729
All checks were successful
sample gradle build and test / build (pull_request) Successful in 1m23s
sample gradle build and test / tag (push) Successful in 12s
sample gradle build and test / build_tag_push (push) Successful in 1m39s
Promote image with tag test to prod / tag (push) Successful in 7s
Promote image with tag test to prod / build_tag_push (push) Successful in 15s
Adding env file placeholder is manddatory for portainer env variables workflow
2025-09-21 12:29:30 +05:30

17 lines
522 B
YAML

services:
app:
image: gitea.hithomelabs.com/hithomelabs/cftunnels:${ENV}
container_name: cftunnels_${ENV}
ports:
- ${HOST_PORT}:8080
environment:
- CLOUDFLARE_ACCOUNT_ID=${CLOUDFLARE_ACCOUNT_ID}
- CLOUDFLARE_API_KEY=${CLOUDFLARE_API_KEY}
- CLOUDFLARE_EMAIL=${CLOUDFLARE_EMAIL}
- ENV=${ENV}
- OAUTH_CLIENT_ID=${OAUTH_CLIENT_ID}
- OAUTH_CLIENT_SECRET=${OAUTH_CLIENT_SECRET}
- HOST_PORT=${HOST_PORT}
env_file:
- stack.env
restart: unless-stopped