mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
13 lines
346 B
YAML
13 lines
346 B
YAML
services:
|
|
backlog-manager:
|
|
container_name: backlog-manager-dev
|
|
env_file: .env
|
|
image: theoretisch030/backlog-manager:latest
|
|
environment:
|
|
- POSTGRES_URL=${POSTGRES_URL}
|
|
- NODE_ENV=${NODE_ENV}
|
|
- HOSTNAME=${HOSTNAME}
|
|
- PORT=${NEXTJS_PORT}
|
|
ports:
|
|
- "${NEXTJS_PORT}:3000"
|
|
restart: unless-stopped
|