19 lines
362 B
YAML
Executable File
19 lines
362 B
YAML
Executable File
services:
|
|
picoshare:
|
|
image: mtlynch/picoshare
|
|
container_name: picoshare
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 64M
|
|
environment:
|
|
- PORT=4001
|
|
- PS_SHARED_SECRET=cx3pkZFK!90MUy9
|
|
ports:
|
|
- 9001:4001
|
|
command: -db /data/store.db
|
|
volumes:
|
|
- ./data:/data
|
|
networks: {}
|