Files
cyphernode/dist/apps/welcome/docker-compose.yaml
2019-05-08 14:22:23 -04:00

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