mirror of
https://github.com/serge-chat/serge.git
synced 2024-01-15 09:32:12 +03:00
* Add support for Podman * Adding tooltips to chat params top bar * Delete podman-compose.dev.yml * Add :z labels to mounts for podman compatibility * Making things prettier
20 lines
371 B
YAML
20 lines
371 B
YAML
services:
|
|
serge:
|
|
restart: on-failure
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
volumes:
|
|
- ./web:/usr/src/app/web/:z
|
|
- ./api:/usr/src/app/api/:z
|
|
- datadb:/data/db
|
|
- weights:/usr/src/app/weights/
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- "8008:8008"
|
|
- "9124:9124"
|
|
|
|
volumes:
|
|
datadb:
|
|
weights:
|