ass/compose.yaml

36 lines
1.2 KiB
YAML
Raw Normal View History

# ass Docker compose.yaml v0.2.0
2021-07-13 22:56:17 +00:00
# authors:
# - tycrek <t@tycrek.com> (https://tycrek.com/)
# - Zusier <zusier@pm.me> (https://github.com/Zusier)
#
# This file is designed to follow the latest Compose specification, defined here: https://github.com/compose-spec/compose-spec/blob/master/spec.md
# Specific thing(s) to note:
# - The filename, `compose.yaml`: "The default path for a Compose file is compose.yaml (preferred)" (https://github.com/compose-spec/compose-spec/blob/master/spec.md#compose-file)
2021-07-13 22:56:17 +00:00
services:
ass:
build: .
container_name: ass-docker
restart: unless-stopped
ports:
2021-07-14 17:34:04 +00:00
- "40115:40115"
volumes:
2021-07-14 17:57:30 +00:00
- ./uploads:/opt/ass/uploads
- ./share:/opt/ass/share
2021-07-14 17:55:30 +00:00
- type: bind
source: ./config.json
target: /opt/ass/config.json
- type: bind
source: ./auth.json
target: /opt/ass/auth.json
- type: bind
source: ./data.json
target: /opt/ass/data.json
tmpfs: /tmp # temp files such as uploads are stored here
2021-07-14 00:27:23 +00:00
tty: true
environment:
- NODE_ENV=production # for production
- ASS_ENV=docker # docker, local, production (not widely used yet)
- LOG_LEVEL=debug # debug, info, warn, error
- FORCE_COLOR=3 # force color output