pastebin/docker-compose.yaml

12 lines
266 B
YAML
Raw Normal View History

2023-09-30 13:47:59 +00:00
version: "3"
services:
server:
2023-10-21 17:39:43 +00:00
image: images.local/pastebin:latest
2023-09-30 13:47:59 +00:00
container_name: pastebin
restart: always
volumes:
2023-10-21 17:39:43 +00:00
- /data/containers/pastebin/pastebin.db:/app/pastebin.db
2023-09-30 13:47:59 +00:00
ports:
2023-10-21 17:39:43 +00:00
- "30002:38082"