1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 01:31:34 +02:00
server/docker-compose.yml
Nobody db2b94c0a3
chore!: update docker scripts (#797)
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
2022-07-20 09:43:34 +03:00

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