Created
May 25, 2022 14:59
-
-
Save intel352/0ffe4cf02fa01b3822f8bf48f96ea88d to your computer and use it in GitHub Desktop.
QNAP portainerCE docker-compose
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
version: '3' | |
services: | |
portainer: | |
image: portainer/portainer-ce:latest | |
container_name: portainer | |
restart: unless-stopped | |
security_opt: | |
- no-new-privileges:true | |
volumes: | |
- /etc/localtime:/etc/localtime:ro | |
- /var/run/docker.sock:/var/run/docker.sock:ro | |
- /share/Container/portainer:/data | |
ports: | |
- 9000:9000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment