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.
26 lines
584 B
26 lines
584 B
# ass Docker compose.yaml v0.1.0
|
|
# authors:
|
|
# - tycrek <t@tycrek.com> (https://tycrek.com/)
|
|
# - Zusier <zusier@pm.me> (https://github.com/Zusier)
|
|
|
|
services:
|
|
ass:
|
|
build: .
|
|
command: npm start
|
|
container_name: ass-docker
|
|
restart: unless-stopped
|
|
ports:
|
|
- "40115:40115"
|
|
- "45375:45375"
|
|
volumes:
|
|
- type: bind
|
|
source: /opt/ass/uploads
|
|
target: /opt/ass/uploads
|
|
- type: bind
|
|
source: /opt/ass/config.json
|
|
target: /opt/ass/config.json
|
|
- type: bind
|
|
source: /opt/ass/auth.json
|
|
target: /opt/ass/auth.json
|
|
tmpfs: /tmp
|
|
working_dir: /opt/ass |