27 lines
880 B
YAML
27 lines
880 B
YAML
services:
|
|
christmas-community:
|
|
image: wingysam/christmas-community
|
|
container_name: christmas-community
|
|
volumes:
|
|
- /srv/docker/christmas/data:/data
|
|
#ports:
|
|
# If you want to go to localhost:8080 to access Christmas Community,
|
|
# use - 8080:80 instead of
|
|
# - 80:80
|
|
environment:
|
|
# Table mode, set to 'false' to revert to box mode
|
|
TABLE: 'true'
|
|
# Single list mode
|
|
# (for weddings, birthdays, etc. only the admin account's list is accessible)
|
|
# Set to 'true' to enable
|
|
SINGLE_LIST: 'false'
|
|
# Some websites (like walmart) send headers that are larger than 8MB in
|
|
# length. If issues are encountered, set the node.js limit to a higher
|
|
# number than 8192
|
|
#NODE_OPTIONS: "--max-http-header-size=32768"
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
default:
|
|
external: true
|
|
name: nginx |