1
0
Fork 0
mirror of https://github.com/SunRed/haste-server.git synced 2024-11-01 01:30:21 +01:00
haste-server/docker-compose.yml
Manuel 4e668e0636
Add Docker support and change default listening address
* Add Dockerfile
* Add docker-compose.yml
* Set default host address to null to make expressjs listen on both ipv4 and ipv6
2021-02-12 14:21:36 +01:00

21 lines
No EOL
661 B
YAML

services:
haste-server:
build:
context: .
dockerfile: Dockerfile
image: zneix/haste-server
container_name: haste-server
network_mode: "bridge"
volumes:
# Default place to put files, can be removed with other storage system
- ./data:/usr/src/app/data:rw
# Create config.js from the example config and make changes
- ./config.js:/usr/src/app/config.js:ro
# PostgreSQL unix socket connection for use with pg storage and postgres database on host
#- /var/run/postgresql:/var/run/postgresql:rw
ports:
- "127.0.0.1:7777:7777/tcp"
- "::1:7777:7777/tcp"
restart: unless-stopped