link-elongater/README.md
nexy7574 708b628146
Some checks failed
Build and Publish / build_and_publish (push) Failing after 40s
Initial commit
2024-06-03 18:17:39 +01:00

24 lines
572 B
Markdown

# Link Elongater
Short links are overrated. Make them longer!
```yml
services:
web:
build: git.i-am.nexus/nex/link-elongater:latest
ports:
- "8000:80"
environment:
- DATABASE_URL=postgres://elongate:elongate@db:5432/elongate
depends_on:
- db
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: elongate
POSTGRES_USER: elongate
POSTGRES_DB: elongate
volumes:
- ./pgdata:/var/lib/postgresql/data
```