22 lines
545 B
YAML
22 lines
545 B
YAML
services:
|
|
copyparty:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
# image: copyparty/ac
|
|
container_name: copyparty
|
|
user: "1000" # use the "id" command
|
|
ports:
|
|
- "3923:3923"
|
|
volumes:
|
|
- /mnt/c:/w/c # drives are based on what I have
|
|
- /mnt/d:/w/d
|
|
- /mnt/e:/w/e
|
|
- /mnt/x:/w/x
|
|
- type: bind
|
|
source: ./cfg
|
|
target: /cfg
|
|
consistency: consistent # unreliable when u change ze config, best for testing hooks
|
|
stdin_open: true
|
|
tty: true
|
|
restart: "always" |