1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
alice-lg-alice-lg/dev/compose.yml

25 lines
414 B
YAML
Raw Normal View History

version: "3.7"
# Composefile for developing with alice. A postgres server
# and the ui live dev server are started.
services:
db:
image: postgres:12
environment:
POSTGRES_USER: alice
POSTGRES_PASSWORD: alice
POSTGRES_DB: alice
ports:
- 5432:5432
ui:
2022-03-15 17:49:26 +01:00
build: containers/ui
volumes:
2022-03-15 17:49:26 +01:00
- ../pkg/ui:/ui
ports:
- 8072:3000
command:
2022-03-15 17:49:26 +01:00
- start