mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
14 lines
241 B
YAML
14 lines
241 B
YAML
services:
|
|
privatebin:
|
|
image: privatebin/nginx-fpm-alpine
|
|
container_name: privatebin
|
|
restart: always
|
|
read_only: true
|
|
user: "1000:1000"
|
|
ports:
|
|
- "8888:8080"
|
|
volumes:
|
|
- data:/srv/data
|
|
|
|
volumes:
|
|
data:
|