Jafner.net/5etools-docker/docker-compose.yml

24 lines
942 B
YAML
Raw Normal View History

2021-07-05 01:15:08 -07:00
version: "3"
services:
2021-10-03 17:12:11 -07:00
5etools-docker:
container_name: 5etools-docker
2022-12-22 09:22:43 -08:00
image: 5etools-docker:dev # jafner/5etools-docker
2021-10-03 17:12:11 -07:00
volumes:
- 5etools-docker:/usr/local/apache2/htdocs
2021-10-03 17:12:11 -07:00
ports:
- 8080:80/tcp
environment:
- SOURCE=GITHUB-NOIMG
# Required unless OFFLINE_MODE=TRUE
2022-12-22 09:22:43 -08:00
# Expects one of GITHUB, GITHUB-NOIMG, GET5ETOOLS, or GET5ETOOLS-NOIMG. Where:
# GITHUB pulls from https://github.com/5etools-mirror-1/5etools-mirror-1
# GITHUB-NOIMG pulls from https://github.com/5etools-mirror-1/5etools-mirror-1 without image files.
# GET5ETOOLS pulls from https://get.5e.tools
# GET5ETOOLS-NOIMG pulls from https://get.5e.tools without image files.
# The get.5e.tools source has been down (redirecting to 5e.tools) during development.
# This method is not tested.
#- OFFLINE_MODE=TRUE
# Optional. Expects "TRUE" or "FALSE".
volumes:
5etools-docker: