mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-03 20:11:30 +01:00
14 lines
337 B
YAML
14 lines
337 B
YAML
services:
|
|
theoludwig:
|
|
container_name: "theoludwig"
|
|
image: "theoludwig"
|
|
restart: "unless-stopped"
|
|
build:
|
|
context: "./"
|
|
dockerfile: "./apps/website/Dockerfile"
|
|
ports:
|
|
- "${WEBSITE_PORT-3000}:${WEBSITE_PORT-3000}"
|
|
environment:
|
|
PORT: ${WEBSITE_PORT-3000}
|
|
env_file: "./apps/website/.env"
|