docker-compose.yml
· 551 B · YAML
Raw
services:
opengist:
container_name: opengist
hostname: opengist
image: ghcr.io/thomiceli/opengist:latest
security_opt:
- no-new-privileges:true
ports:
- 6157:6157
volumes:
- /home/debian/docker:/opengist
environment:
UID: 1000
GID: 1000
OG_CUSTOM_LOGO: logo.png
OG_CUSTOM_FAVICON: logo.png
OG_CUSTOM_STATIC_LINK_0_NAME: Copyright 2024 - 2025 emanuelegori.uno
OG_CUSTOM_STATIC_LINK_0_PATH: https://emanuelegori.uno
OG_LOG_LEVEL: debug
restart: unless-stopped
1 | services: |
2 | opengist: |
3 | container_name: opengist |
4 | hostname: opengist |
5 | image: ghcr.io/thomiceli/opengist:latest |
6 | security_opt: |
7 | - no-new-privileges:true |
8 | ports: |
9 | - 6157:6157 |
10 | volumes: |
11 | - /home/debian/docker:/opengist |
12 | environment: |
13 | UID: 1000 |
14 | GID: 1000 |
15 | OG_CUSTOM_LOGO: logo.png |
16 | OG_CUSTOM_FAVICON: logo.png |
17 | OG_CUSTOM_STATIC_LINK_0_NAME: Copyright 2024 - 2025 emanuelegori.uno |
18 | OG_CUSTOM_STATIC_LINK_0_PATH: https://emanuelegori.uno |
19 | OG_LOG_LEVEL: debug |
20 | restart: unless-stopped |