You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
YAML
24 lines
487 B
YAML
8 years ago
|
version: '2'
|
||
|
services:
|
||
|
|
||
|
cryptpad:
|
||
|
build:
|
||
|
context: .
|
||
|
args:
|
||
|
- VERSION=${VERSION}
|
||
|
image: "xwiki/cryptpad:${VERSION}"
|
||
|
hostname: cryptpad
|
||
|
|
||
|
labels:
|
||
|
- traefik.port=3000
|
||
|
- traefik.frontend.passHostHeader=true
|
||
|
environment:
|
||
|
- USE_SSL=${USE_SSL}
|
||
|
- STORAGE=${STORAGE}
|
||
|
- LOG_TO_STDOUT=${LOG_TO_STDOUT}
|
||
|
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./data/files:/cryptpad/datastore:rw
|
||
|
- ./data/customize:/cryptpad/customize:rw
|