diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 17:09:04 +0200 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 17:09:04 +0200 |
commit | bd967b68a274f79a0c5f351d228ff9279e0e9a89 (patch) | |
tree | d207feaf70f34c7c9468e83ef43dd9e0fc169e35 /privatebin |
Initial commit
Diffstat (limited to 'privatebin')
-rw-r--r-- | privatebin/compose.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/privatebin/compose.yaml b/privatebin/compose.yaml new file mode 100644 index 0000000..5cb67b1 --- /dev/null +++ b/privatebin/compose.yaml @@ -0,0 +1,11 @@ +services: + nginx-fpm-alpine: + image: privatebin/nginx-fpm-alpine:1.7.6 + restart: unless-stopped + read_only: true + ports: + - 10.0.0.1:8081:8080 + volumes: + - $PWD/privatebin-data:/srv/data + - $PWD/conf.php:/srv/cfg/conf.php:ro +networks: {} |