Skip to content

Commit

Permalink
chore(docker): add docker compose for portainer
Browse files Browse the repository at this point in the history
Portainer allows you to manaage your docker containers via a web UI. This is experimental.
  • Loading branch information
dtfiedler committed Jan 30, 2025
1 parent 87dc8f1 commit b817065
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docker-compose.portainer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
networks:
ar-io-network:
external: true

services:
portainer:
image: portainer/portainer-ce
restart: unless-stopped
networks:
- ar-io-network
ports:
- 9000:9000
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data

volumes:
portainer_data:

0 comments on commit b817065

Please sign in to comment.