1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 05:55:53 +02:00
.profile/compose.yaml

14 lines
337 B
YAML
Raw Permalink Normal View History

2021-04-18 01:56:23 +02:00
services:
theoludwig:
container_name: "theoludwig"
image: "theoludwig"
restart: "unless-stopped"
2021-04-18 01:56:23 +02:00
build:
context: "./"
dockerfile: "./apps/website/Dockerfile"
2023-12-28 06:21:24 +01:00
ports:
- "${WEBSITE_PORT-3000}:${WEBSITE_PORT-3000}"
2021-04-18 01:56:23 +02:00
environment:
PORT: ${WEBSITE_PORT-3000}
env_file: "./apps/website/.env"