nsite-ts/docker-compose.yml

23 lines
433 B
YAML
Raw Normal View History

2024-09-25 13:37:32 -05:00
version: "3.7"
volumes:
cache: {}
services:
nginx:
image: nginx:alpine
ports:
- 8080:80
volumes:
- cache:/var/cache/nginx
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
nsite:
build: .
2024-09-25 15:28:28 -05:00
image: ghcr.io/hzrd149/nsite-ts:master
2024-09-25 13:37:32 -05:00
environment:
2024-09-25 15:28:28 -05:00
LOOKUP_RELAYS: wss://user.kindpag.es,wss://purplepag.es
2024-09-25 13:37:32 -05:00
ports:
- 3000:80