1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 09:41:35 +02:00
server/docker-compose.yml

26 lines
427 B
YAML
Raw Normal View History

version: '3.9'
2021-08-13 01:09:08 +02:00
services:
fosscord:
container_name: fosscord
image: fosscord
restart: on-failure:5
2021-10-23 20:04:58 +02:00
build: .
ports:
- '3001-3005:3001-3005'
volumes:
- ./:/srv/fosscord-server/
environment:
THREADS: ${THREADS:-1}
HTTP_PORT: 3001
WS_PORT: 3002
CDN_PORT: 3003
RTC_PORT: 3004
ADMIN_PORT: 3005
networks:
default:
name: fosscord
driver: bridge