19 lines
405 B
YAML
19 lines
405 B
YAML
version: '3.8'
|
|
|
|
# This compose file can be used with either Docker or Podman
|
|
# For Podman: podman-compose up -d
|
|
|
|
services:
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: eurovision-25-backend:1.0rc3
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|
|
environment:
|
|
- ADMIN_USERNAME=admin
|
|
- ADMIN_PASSWORD=password |