blob: 5eead707545f8d731b84ab5b296e7e8acb6a55e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
services:
skunkyart:
container_name: skunkyart
restart: unless-stopped
build: .
ports:
- "127.0.0.1:3003:3003"
security_opt:
- no-new-privileges:true
volumes:
- ./config.json:/config.json:ro
- ./cache:/cache # Ensure cache folder has a 10000:10000 ownership.
|