14 lines
259 B
YAML
14 lines
259 B
YAML
services:
|
|
nginx:
|
|
image: ghcr.io/${GITHUB_OWNER}/readitlater-nginx:latest
|
|
ports:
|
|
- "80:80"
|
|
depends_on:
|
|
- api
|
|
restart: always
|
|
|
|
api:
|
|
image: ghcr.io/${GITHUB_OWNER}/readitlater-api:latest
|
|
env_file: .env
|
|
restart: always
|