12 lines
228 B
YAML
12 lines
228 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
web:
|
|
image: ghcr.io/dilankaher/my_website:latest
|
|
container_name: go_htmx_app
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./my_website.db:/app/my_website.db
|
|
restart: unless-stopped
|