10 lines
213 B
YAML
10 lines
213 B
YAML
services:
|
|
api:
|
|
build: .
|
|
container_name: email-config-api
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
# Verwendet PORT aus deiner .env für Host und Container
|
|
- "${PORT}:${PORT}" |