Watch
1
0
Fork
You've already forked docker-compose
0
Docker Compose files for Thulium
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-22 01:26:35 +02:00
beszel Add Docker compose files for Beszel and Owncast 2026-07-01 03:33:05 +02:00
forgejo [GoToSocial] [Forjego] Update versions 2026-07-22 01:26:35 +02:00
fossil [Fossil] Use https when behind reverse proxy 2026-07-04 03:05:35 +02:00
freshrss Remove extraneous Docker Compose version 2026-05-25 16:12:07 +02:00
gotosocial [GoToSocial] [Forjego] Update versions 2026-07-22 01:26:35 +02:00
mastofe@4440b4243a [GoToSocial] Update mastofe 2026-06-27 14:49:35 +02:00
nextcloud Remove extraneous Docker Compose version 2026-05-25 16:12:07 +02:00
owncast Add Docker compose files for Beszel and Owncast 2026-07-01 03:33:05 +02:00
.gitignore Add Docker compose file for fossil 2026-07-03 17:23:55 +02:00
README.md Create README.md 2019-06-14 23:07:53 -07:00

Template

version: "3"

services:
  example:
    image: author/example:tag
    container_name: example
    restart: always
    environment:
      - ENV_VAR=value
    ports:
      - 8000:80
    volumes:
      - /unnamed/volume/will/be/created
      - myvolume:/var/www/html
      - /srv/data/host/location:/srv/data
    networks:
      - mynetwork
    depends_on:
      - db
  db:
    image: postgres
    container_name: example-db
    restart: always
    expose:
      - 5432
    volumes:
      - example-db:/var/lib/postgresql/9.3./main
      
networks:
  mynetwork:

volumes:
  myvolume:
  example-db: