Skip to content

Instantly share code, notes, and snippets.

@initcron
Last active October 22, 2019 04:15
Show Gist options
  • Save initcron/488d49cc2ce2bd35e4afd05d9a8b4df2 to your computer and use it in GitHub Desktop.
Save initcron/488d49cc2ce2bd35e4afd05d9a8b4df2 to your computer and use it in GitHub Desktop.

Nano Project : Dockerize a Facebook Clone

As a devops engineer, you are asked to write a Dockerfile to automate image build for deploying Facebooc, a Facebook clone written in C language. It uses SQLite as a database backend to store user logins and posts.

Source Repo: https://github.com/schoolofdevops/facebooc.git

Steps to install/setup Facebooc:

Use ubuntu as a base image/platform

Install prerequisite packages

build-essential
make
libsqlite3-dev
sqlite3

Run the following command to compile the source code.

make all

Launch app as bin/facebooc This will attach to port 16000

As part of the build process, you will have to convert steps above to Dockerfile instructions e.g. RUN, EXPOSE, COPY, CMD etc. Learn about the Dockerfile instructions, use the cheat sheet provided while you build your Dockerfile. Once built, push the image to docker hub registry.

Following is the scaffold for Dockerfile that you could use.

FROM

WORKDIR /opt/facebooc

COPY

RUN

EXPOSE

CMD

Validation Criteria

If you visit http://IP_ADDRESS:PORT , facebooc site should be visible.

References

Dockerfile Reference: https://docs.docker.com/engine/reference/builder/

Dockerfile for a Python App : https://github.com/schoolofdevops/example-voting-a...

Dockerfile for MySQL Official Image : https://github.com/docker-library/mysql/tree/b4b7c...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment