mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 08:32:02 +00:00
bf1db428f6
Change ports and container names Move volumes into subfolder (ref #474) Merge pull request #587 from StaticallyTypedRice/patch-2 Clarify that content violating this code of conduct will likely be removed. Clarify that content violating this code of conduct will likely be removed. Lemmy has a general policy of removing any content that violates the rules whenever possible, which is typically a good thing, and I felt it important to mention that in the code of conduct. Co-authored-by: Felix <me@nutomic.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com> Co-authored-by: Richie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com>
46 lines
No EOL
991 B
YAML
Vendored
46 lines
No EOL
991 B
YAML
Vendored
version: '3.3'
|
|
|
|
services:
|
|
lemmy:
|
|
image: {{ lemmy_docker_image }}
|
|
ports:
|
|
- "127.0.0.1:8536:8536"
|
|
restart: always
|
|
volumes:
|
|
- ./lemmy.hjson:/config/config.hjson:ro
|
|
depends_on:
|
|
- postgres
|
|
- pictshare
|
|
- iframely
|
|
|
|
postgres:
|
|
image: postgres:12-alpine
|
|
environment:
|
|
- POSTGRES_USER=lemmy
|
|
- POSTGRES_PASSWORD={{ postgres_password }}
|
|
- POSTGRES_DB=lemmy
|
|
volumes:
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
|
restart: always
|
|
|
|
pictshare:
|
|
image: shtripok/pictshare:latest
|
|
ports:
|
|
- "127.0.0.1:8537:80"
|
|
volumes:
|
|
- ./volumes/pictshare:/usr/share/nginx/html/data
|
|
restart: always
|
|
|
|
iframely:
|
|
image: dogbin/iframely:latest
|
|
ports:
|
|
- "127.0.0.1:8061:80"
|
|
volumes:
|
|
- ./iframely.config.local.js:/iframely/config.local.js:ro
|
|
restart: always
|
|
|
|
postfix:
|
|
image: mwader/postfix-relay
|
|
environment:
|
|
- POSTFIX_myhostname={{ domain }}
|
|
restart: "always" |