mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 15:40:22 +00:00
21 lines
No EOL
383 B
YAML
21 lines
No EOL
383 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
portainer:
|
|
image: portainer/portainer-ce:${APP_VERSION}
|
|
container_name: ${APP_NAME}
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- ${APP_HTTP_PORT}:9000
|
|
volumes:
|
|
- portainer:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
networks:
|
|
default:
|
|
name: ${APP_NETWORK}
|
|
external: true
|
|
|
|
volumes:
|
|
portainer: |