mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
30 lines
544 B
YAML
30 lines
544 B
YAML
services:
|
|
frontend:
|
|
build:
|
|
context: ..
|
|
dockerfile: .devcontainer/Dockerfile
|
|
args:
|
|
USER_UID: ${UID:-1000}
|
|
USER_GID: ${GID:-1000}
|
|
command: sleep infinity
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ..:/workspaces/assessment-model
|
|
networks:
|
|
- frontend-net
|
|
|
|
pgadmin:
|
|
image: dpage/pgadmin4
|
|
hostname: pgadmin
|
|
ports:
|
|
- 5556:80
|
|
env_file:
|
|
- ../.db-env
|
|
restart: unless-stopped
|
|
networks:
|
|
- frontend-net
|
|
|
|
networks:
|
|
frontend-net:
|
|
driver: bridge
|