Sign inSign up

thegreatestgiant/website

By thegreatestgiant

Updated over 2 years ago

This combines nginx and code-server on one image with a few built-in scripts

Image
0

903

thegreatestgiant/website repository overview

https://github.com/thegreatestgiant/A-Website

Tags

The regular tags

They are for my mix of code-server and nginx with my custom script new-site which adds another site on a different port

The swarm tags

These are the same except

  • They don't have new-site
  • They have spoof which adds an SSL cert to a domain

docker-compose.yml

Regular tags

services:
  website:
    restart: always
    container_name: a-website
    ports:
     - 8080:8080
     - 600:600
    volumes:
      - web-code:/root/.local/share/code-server
      - web-sites:/sites
      - web-st-av:/etc/nginx/sites-available
      - web-st-en:/etc/nginx/sites-enabled
    image: thegreatestgiant/website
volumes:
  web-code:
  web-sites:
  web-st-av:
  web-st-en:

Swarm Tags

services:
  website:
    restart: always
    container_name: swarm
    network_mode: host
    image: thegreatestgiant/website:swarm

Tag summary

Content type

Image

Digest

sha256:d79d6876d

Size

252.3 MB

Last updated

over 2 years ago

docker pull thegreatestgiant/website