docker-compose.yml
· 358 B · YAML
Raw
services:
opengist:
image: ghcr.io/thomiceli/opengist:1
container_name: opengist
restart: unless-stopped
ports:
- "6157:6157" # HTTP port
- "2222:2222" # SSH port, can be removed if you don't use SSH
volumes:
- "$HOME/.opengist:/opengist"
environment:
# OG_LOG_LEVEL: info
# other configuration options
| 1 | services: |
| 2 | opengist: |
| 3 | image: ghcr.io/thomiceli/opengist:1 |
| 4 | container_name: opengist |
| 5 | restart: unless-stopped |
| 6 | ports: |
| 7 | - "6157:6157" # HTTP port |
| 8 | - "2222:2222" # SSH port, can be removed if you don't use SSH |
| 9 | volumes: |
| 10 | - "$HOME/.opengist:/opengist" |
| 11 | environment: |
| 12 | # OG_LOG_LEVEL: info |
| 13 | # other configuration options |