mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-27 09:37:27 +01:00
26 lines
811 B
YAML
26 lines
811 B
YAML
version: "3"
|
|
|
|
services:
|
|
cyphernode_welcome:
|
|
environment:
|
|
- "TRACING=1"
|
|
image: cyphernode/app_welcome:v0.2.0-rc.1
|
|
volumes:
|
|
- "$GATEKEEPER_DATAPATH/certs/cert.pem:/data/cert.pem"
|
|
- "$GATEKEEPER_DATAPATH/keys.properties:/data/keys.properties"
|
|
- "$APP_SCRIPT_PATH/config.toml:/data/config.toml"
|
|
- "$GATEKEEPER_DATAPATH/htpasswd:/htpasswd/htpasswd"
|
|
networks:
|
|
- cyphernodeappsnet
|
|
restart: always
|
|
labels:
|
|
- "traefik.docker.network=cyphernodeappsnet"
|
|
- "traefik.frontend.rule=PathPrefix:/welcome; PathPrefixStrip:/welcome"
|
|
- "traefik.frontend.passHostHeader=true"
|
|
- "traefik.enable=true"
|
|
- "traefik.port=8080"
|
|
- "traefik.frontend.auth.basic.usersFile=/htpasswd/htpasswd"
|
|
networks:
|
|
cyphernodeappsnet:
|
|
external: true
|