38 lines
791 B
Markdown
38 lines
791 B
Markdown
# dockge
|
|
|
|
|
|
|
|
|
|
|
|
| Création | Container Manager (projet) |
|
|
| ----------- | -------------------------------------------- |
|
|
| Mise-à-jour | - |
|
|
| Ports | 5011 |
|
|
| Liens | [Github](https://github.com/louislam/dockge) |
|
|
|
|
|
|
|
|
```yaml
|
|
version: "3.8"
|
|
services:
|
|
dockge:
|
|
image: louislam/dockge:1
|
|
restart: unless-stopped
|
|
ports:
|
|
# Host Port : Container Port
|
|
- 5011:5001
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
… environment:
|
|
# Tell Dockge where is your stacks directory
|
|
- DOCKGE_STACKS_DIR=/volume1/docker/dockge/stacks
|
|
|
|
networks:
|
|
default:
|
|
driver: bridge
|
|
ipam:
|
|
config:
|
|
- subnet: 172.16.58.0/24
|
|
```
|
|
|