Skip to content
Snippets Groups Projects
docker-compose.yml 1.28 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jonas Leder's avatar
    Jonas Leder committed
    #This is the production compose file, if you want to develop use the docker-compose-test file.
    
    Jonas Leder's avatar
    Jonas Leder committed
    version: '2.1'
    
    Jonas Leder's avatar
    Jonas Leder committed
    services:
      url_shorter:
    
    Jonas Leder's avatar
    Jonas Leder committed
        image: gitlab.jonasled.de/jonasled/url_shorter_docker:latest
    
    Jonas Leder's avatar
    Jonas Leder committed
        volumes:
          - url_shorter_db:/app/db #Used to store the database
        ports:
          - "5000:5000"
        environment:
    
    Jonas Leder's avatar
    Jonas Leder committed
          - domains= #List of domains (with port if not 80/443) seperated with ";"
    
          - show_build_date=0 #Normaly disable this.
          - show_version=0 #Normaly disable this.
    
    Jonas Leder's avatar
    Jonas Leder committed
          - production=1 #You should only disable this for debugging
    
    Jonas Leder's avatar
    Jonas Leder committed
          - url_scheme=https #If you use a reverse Proxy with https set this to https
    
    Jonas Leder's avatar
    Jonas Leder committed
          - recaptcha_private= #Please enter here your private Key for google recaptcha
          - recaptcha_public= #Please enter here your public Key for google recaptcha
    
    Jonas Leder's avatar
    Jonas Leder committed
          - host=0.0.0.0 #With this variable you can set the access ip range. 127.0.0.1 means you can only access it from the local network and 0.0.0.0 means everyone can access it.
    
          - GITHUB_CLIENT_ID= #You have to set these two variables, if not the shorter will not run. To get the keys visit https://github.com/settings/developers and register a new oauth application. The callback path is /user/github-callback
    
          - GITHUB_CLIENT_SECRET= 
    
    Jonas Leder's avatar
    Jonas Leder committed
    volumes:
      url_shorter_db:
    
    Jonas Leder's avatar
    Jonas Leder committed