34 lines
683 B
YAML
34 lines
683 B
YAML
version: '1.0.0'
|
|
|
|
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-Web
|
|
image: podcast-web
|
|
ports:
|
|
- "3200:3000"
|
|
volumes:
|
|
- /opt/audio/output:/app/server/output
|
|
- /opt/audio/sqlite.db:/app/web/sqlite.db
|
|
- /opt/audio/config:/app/config
|
|
restart: always
|
|
container_name: podcast-web
|
|
depends_on:
|
|
- server
|
|
|
|
server:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-Server
|
|
image: podcast-server
|
|
ports:
|
|
- "3100:8000"
|
|
volumes:
|
|
- /opt/audio/output:/app/server/output
|
|
- /opt/audio/config:/app/config
|
|
restart: always
|
|
container_name: podcast-server
|
|
|
|
volumes:
|
|
audio-data: |