docker-compose.yml
· 725 B · YAML
Raw
services:
opengist:
container_name: opengist
hostname: opengist
networks:
- npm-internal
image: ghcr.io/thomiceli/opengist:latest
security_opt:
- no-new-privileges:true
# ports:
# - 6157:6157
# - 2222:2222 # SSH port, can be removed if you don't use SSH
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
networks:
npm-internal:
name: npm-internal
external: true
1 | services: |
2 | opengist: |
3 | container_name: opengist |
4 | hostname: opengist |
5 | networks: |
6 | - npm-internal |
7 | image: ghcr.io/thomiceli/opengist:latest |
8 | security_opt: |
9 | - no-new-privileges:true |
10 | # ports: |
11 | # - 6157:6157 |
12 | # - 2222:2222 # SSH port, can be removed if you don't use SSH |
13 | volumes: |
14 | - /home/debian/docker:/opengist |
15 | environment: |
16 | UID: 1000 |
17 | GID: 1000 |
18 | OG_CUSTOM_LOGO: logo.png |
19 | OG_CUSTOM_FAVICON: logo.png |
20 | OG_CUSTOM_STATIC_LINK_0_NAME: Copyright 2024 - 2025 emanuelegori.uno |
21 | OG_CUSTOM_STATIC_LINK_0_PATH: https://emanuelegori.uno |
22 | OG_LOG_LEVEL: debug |
23 | restart: unless-stopped |
24 | |
25 | networks: |
26 | npm-internal: |
27 | name: npm-internal |
28 | external: true |