Skip to content

Instantly share code, notes, and snippets.

@TheTinkerDad
Created May 6, 2021 14:24
Show Gist options
  • Save TheTinkerDad/8beecfe1dc5da0840109bd7c6a324d14 to your computer and use it in GitHub Desktop.
Save TheTinkerDad/8beecfe1dc5da0840109bd7c6a324d14 to your computer and use it in GitHub Desktop.
version: "2.0"
volumes:
portainer-data:
cronicle-data:
cronicle-logs:
cronicle-plugins:
cronicle-app:
services:
portainer:
image: portainer/portainer:latest
ports:
- 9000:9000
command: -H unix:///var/run/docker.sock
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer-data:/data
restart: always
cronicle:
image: bluet/cronicle-docker:latest
ports:
- 3012:3012
volumes:
- /var/run/docker.sock:/var/run/docker.sock:rw
- cronicle-data:/opt/cronicle/data:rw
- cronicle-logs:/opt/cronicle/logs:rw
- cronicle-plugins:/opt/cronicle/plugins:rw
- cronicle-app:/app:rw
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment