Initial checkin

This commit is contained in:
Radar231 2021-08-01 18:13:44 -04:00
commit 703e1921ec
3 changed files with 25 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.env

6
README.md Normal file
View File

@ -0,0 +1,6 @@
# portainer_agent docker deployment
## Introduction
This docker-compose config will deploy a portainer_agent server.

18
docker-compose.yml Normal file
View File

@ -0,0 +1,18 @@
version: '3.2'
services:
agent:
container_name: portainer_agent
image: portainer/agent
env_file:
- port.env
environment:
# value retrieved from port.env file
# AGENT_SECRET: "xxxxxxx"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/docker/volumes:/var/lib/docker/volumes
restart: unless-stopped
ports:
- "9001:9001"