modified compose

This commit is contained in:
divyam234 2023-09-08 16:18:02 +05:30
parent f44520cc9a
commit 539b0689a5

View file

@ -2,19 +2,11 @@ version: "3.8"
services: services:
server: server:
image: ghcr.io/divyam234/teldrive/server:latest image: ghcr.io/divyam234/teldrive/server
restart: always restart: always
container_name: server container_name: teldrive
volumes: volumes:
- ./sessions:/app/sessions:rw - ./sessions:/app/sessions:rw
- ./database:/app/database
env_file: .env env_file: .env
ports: ports:
- 8000:8000 - 8000:8080
client:
image: ghcr.io/divyam234/teldrive/client:latest
restart: always
container_name: client
ports:
- 3000