mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 02:42:37 +01:00
257b81d0b9
BREAKING CHANGE: this new docker image no longer clones this repository. Some manual steps are required * chore!: update docker scripts * chore: fix paths in docker scripts * chore: add config docker compose
26 lines
427 B
YAML
26 lines
427 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
|
|
fosscord:
|
|
container_name: fosscord
|
|
image: fosscord
|
|
restart: on-failure:5
|
|
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
|