aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: 10152551631d8c29efe7640e61b59dfdc89b8a7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: '3.8'
services:
  vnext:
    network_mode: bridge
    build:
      context: .
      dockerfile: vnext/server/Dockerfile
    restart: unless-stopped
    ports:
      - "127.0.0.1:8081:8081"
    extra_hosts:
      - "host.docker.internal:host-gateway"
    environment:
      JUICK_FCM_SERVICE_ACCOUNT_FILE: ${JUICK_FCM_SERVICE_ACCOUNT_FILE}
      DEBUG: sender,durov,http,event,hms,android
      NODE_CONFIG_DIR: /etc/juick
      PG_HOST: host.docker.internal
    volumes:
      - /etc/juick:/etc/juick