mirror of https://github.com/tycrek/ass
You can not 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
811 B
24 lines
811 B
# ass Docker compose.yaml v0.3.0
|
|
# 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)
|
|
|
|
services:
|
|
ass:
|
|
image: tycrek/ass
|
|
container_name: ass-docker
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./.ass-data:/opt/ass-src/.ass-data
|
|
ports:
|
|
- "40115:40115"
|
|
tmpfs: /tmp
|
|
tty: true
|
|
environment:
|
|
- NODE_ENV=production
|
|
- FORCE_COLOR=3 # tlog color output
|