Sign inSign up

collinmutembei/phedit

By collinmutembei

Updated almost 7 years ago

Image
0

1.3K

collinmutembei/phedit repository overview

Phedit is a modern photo editing application that lets you express yourself through pictures. Users can upload images to Phedit and apply any of the close to a dozen effects. The edited images can be shared to facebook or twitter through a public url.

sample docker-compose file
version: '3.7'
services:
  db:
    image: collinmutembei/postgres:latest
    healthcheck:
      test:
       - CMD
       - pg_isready
       - -U
       - postgres
      interval: 5s
      timeout: 5s
      retries: 5
    environment:
      POSTGRESQL_PASSWORD: kcQGUwD7DehPNRXrCuZw
      POSTGRES_MULTIPLE_DATABASES: phedit, fJYgRDBKBIHFhgTFIIJ9DGU;
      POSTGRES_USER: postgres
    volumes:
      - .pgdata:/var/lib/postgresql/data
    ports:
     - 5432:5432
    networks:
     - default
    logging:
      driver: json-file
  phedit:
    image: collinmutembei/phedit:3.7.4
    environment:
      SECRET: sjkegw3skchgQGUhgFwD7Deh
      DATABASE_URL: postgres://phedit:fJYgRDBKBIHFhgTFIIJ9DGU@db:5432/phedit
    ports:
     - 8000:8000
    networks:
     - default
    logging:
      driver: json-file
networks:
  default:
    driver: overlay
volumes:
  .pgdata:

Visit Phedit at http://127.0.0.1:8000

Tag summary

Content type

Image

Digest

Size

373.2 MB

Last updated

almost 7 years ago

docker pull collinmutembei/phedit:3.7.4