mirror of
https://git.straybits.ca/straybits/docker-samples.git
synced 2024-11-07 18:22:26 +00:00
18 lines
299 B
YAML
18 lines
299 B
YAML
|
version: "3.7"
|
||
|
|
||
|
services:
|
||
|
|
||
|
tunnel:
|
||
|
image: cloudflare/cloudflared
|
||
|
command: tunnel --no-autoupdate run
|
||
|
restart: unless-stopped
|
||
|
env_file: .env
|
||
|
|
||
|
privatebin:
|
||
|
image: privatebin/fs
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./data:/srv/data
|
||
|
- ./conf.php:/srv/cfg/conf.php:ro
|
||
|
|