Is there a way to use GitHub storge with self host using docker. I see you can use GITLAB storge. #196
CTGControls
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
version: '3.9'
services:
drawio:
image: jgraph/drawio:latest
container_name: drawio
restart: always
environment:
TZ: ${TZ}
VIRTUAL_HOST: ${DRAWIO_VIRTUAL_HOST}
VIRTUAL_PORT: ${DRAWIO_VIRTUAL_PORT}
LETS_ENCRYPT_ENABLE: ${DRAWIO_LETS_ENCRYPT_ENABLED}
PUBLIC_DNS: ${DRAWIO_DRAWIO_PUBLIC_DNS}
ORGANISATION_UNIT: ${DRAWIO_ORGANISATION_UNIT}
ORGANISATION: ${DRAWIO_ORGANISATION}
CITY: ${DRAWIO_CITY}
STATE: ${DRAWIO_STATE}
COUNTRY_CODE: ${DRAWIO_COUNTRY_CODE}
KEYSTORE_PASS: ${DRAWIO_KEYSTORE_PASS}
KEY_PASS: ${DRAWIO_KEY_PASS}
DRAWIO_GITLAB_URL: ${DRAWIO_GITLAB_URL}
DRAWIO_GITLAB_ID: ${DRAWIO_GITLAB_ID}
DRAWIO_GITLAB_SECRET: ${DRAWIO_GITLAB_SECRET}
healthcheck:
disable: true
ports:
- "${IPADDRESS}:80:8080"
- "${IPADDRESS}:443:8443"
networks:
vlan2:
ipv4_address: ${IPADDRESS}
stop_grace_period: 1m
volumes:
- drawio_letsencrypt_log:/var/log/letsencrypt
- drawio_letsencrypt_etc:/etc/letsencrypt
- drawio_letsencrypt_lib:/var/lib/letsencrypt
volumes:
drawio_letsencrypt_log:
external:
name: drawio_letsencrypt_log
drawio_letsencrypt_etc:
external:
name: drawio_letsencrypt_etc
drawio_letsencrypt_lib:
external:
name: drawio_letsencrypt_lib
networks:
vlan2:
external: true
name: vlan2
default:
external: true
name: backend_network
Beta Was this translation helpful? Give feedback.
All reactions