Created
April 17, 2025 02:10
-
-
Save joepreludian/ec3e7f8a5fe129e4634a46d3310593ab to your computer and use it in GitHub Desktop.
docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
portainer: | |
image: portainer/portainer-ce:lts | |
restart: always | |
ports: | |
- 9443:9443 | |
- 9000:9000 | |
- 8000:8000 | |
volumes: | |
- portainer_data:/data | |
- /var/run/docker.sock:/var/run/docker.sock | |
- /var/lib/docker/volumes:/var/lib/docker/volumes | |
networks: | |
- public_net | |
cftunnel: | |
image: cloudflare/cloudflared:latest | |
command: tunnel --no-autoupdate run --token <Your token - Zero trust - Cloudflare> | |
networks: | |
- public_net | |
restart: always | |
networks: | |
public_net: | |
name: public_net | |
volumes: | |
portainer_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment